static final String DIRECTIONS_TEXT = "\nReduce 5 or more balls of the same colour by setting them in a vertical, horizontal or diagonal row. LEFT/RIGHT/UP/DOWN to move the cursor, FIRE to select/deselect and move a ball, GAME_A key to show the score, GAME_B to repaint the board.\nPlease let me know if this game works (or doesn't work) on your device - [support@wapindustrial.com]";
private LinesCanvas canvas;
private Alert directions = new Alert("Help");
public Lines() {
this.directions.setTimeout(-2);
this.directions.setString("Lines v " + LinesCanvas.getVersion() + "\nReduce 5 or more balls of the same colour by setting them in a vertical, horizontal or diagonal row. LEFT/RIGHT/UP/DOWN to move the cursor, FIRE to select/deselect and move a ball, GAME_A key to show the score, GAME_B to repaint the board.\nPlease let me know if this game works (or doesn't work) on your device - [support@wapindustrial.com]");
this.canvas = new LinesCanvas(this);
ExitHookup.hookup(this, this.canvas);
}
public void destroyApp(boolean var1) throws MIDletStateChangeException {